home *** CD-ROM | disk | FTP | other *** search
/ The Other Thing / The Other Thing.iso / WILDRIDE / WILDRIDE.EXE / X / 226 < prev    next >
Text File  |  1996-09-17  |  9KB  |  445 lines

  1. xof 0302txt 0064
  2. template Header {
  3.  <3D82AB43-62DA-11cf-AB39-0020AF71E433>
  4.  WORD major;
  5.  WORD minor;
  6.  DWORD flags;
  7. }
  8.  
  9. template Vector {
  10.  <3D82AB5E-62DA-11cf-AB39-0020AF71E433>
  11.  FLOAT x;
  12.  FLOAT y;
  13.  FLOAT z;
  14. }
  15.  
  16. template Coords2d {
  17.  <F6F23F44-7686-11cf-8F52-0040333594A3>
  18.  FLOAT u;
  19.  FLOAT v;
  20. }
  21.  
  22. template Matrix4x4 {
  23.  <F6F23F45-7686-11cf-8F52-0040333594A3>
  24.  array FLOAT matrix[16];
  25. }
  26.  
  27. template ColorRGBA {
  28.  <35FF44E0-6C7C-11cf-8F52-0040333594A3>
  29.  FLOAT red;
  30.  FLOAT green;
  31.  FLOAT blue;
  32.  FLOAT alpha;
  33. }
  34.  
  35. template ColorRGB {
  36.  <D3E16E81-7835-11cf-8F52-0040333594A3>
  37.  FLOAT red;
  38.  FLOAT green;
  39.  FLOAT blue;
  40. }
  41.  
  42. template IndexedColor {
  43.  <1630B820-7842-11cf-8F52-0040333594A3>
  44.  DWORD index;
  45.  ColorRGBA indexColor;
  46. }
  47.  
  48. template Boolean {
  49.  <4885AE61-78E8-11cf-8F52-0040333594A3>
  50.  WORD truefalse;
  51. }
  52.  
  53. template Boolean2d {
  54.  <4885AE63-78E8-11cf-8F52-0040333594A3>
  55.  Boolean u;
  56.  Boolean v;
  57. }
  58.  
  59. template MaterialWrap {
  60.  <4885AE60-78E8-11cf-8F52-0040333594A3>
  61.  Boolean u;
  62.  Boolean v;
  63. }
  64.  
  65. template TextureFilename {
  66.  <A42790E1-7810-11cf-8F52-0040333594A3>
  67.  STRING filename;
  68. }
  69.  
  70. template Material {
  71.  <3D82AB4D-62DA-11cf-AB39-0020AF71E433>
  72.  ColorRGBA faceColor;
  73.  FLOAT power;
  74.  ColorRGB specularColor;
  75.  ColorRGB emissiveColor;
  76.  [...]
  77. }
  78.  
  79. template MeshFace {
  80.  <3D82AB5F-62DA-11cf-AB39-0020AF71E433>
  81.  DWORD nFaceVertexIndices;
  82.  array DWORD faceVertexIndices[nFaceVertexIndices];
  83. }
  84.  
  85. template MeshFaceWraps {
  86.  <4885AE62-78E8-11cf-8F52-0040333594A3>
  87.  DWORD nFaceWrapValues;
  88.  Boolean2d faceWrapValues;
  89. }
  90.  
  91. template MeshTextureCoords {
  92.  <F6F23F40-7686-11cf-8F52-0040333594A3>
  93.  DWORD nTextureCoords;
  94.  array Coords2d textureCoords[nTextureCoords];
  95. }
  96.  
  97. template MeshMaterialList {
  98.  <F6F23F42-7686-11cf-8F52-0040333594A3>
  99.  DWORD nMaterials;
  100.  DWORD nFaceIndexes;
  101.  array DWORD faceIndexes[nFaceIndexes];
  102.  [Material]
  103. }
  104.  
  105. template MeshNormals {
  106.  <F6F23F43-7686-11cf-8F52-0040333594A3>
  107.  DWORD nNormals;
  108.  array Vector normals[nNormals];
  109.  DWORD nFaceNormals;
  110.  array MeshFace faceNormals[nFaceNormals];
  111. }
  112.  
  113. template MeshVertexColors {
  114.  <1630B821-7842-11cf-8F52-0040333594A3>
  115.  DWORD nVertexColors;
  116.  array IndexedColor vertexColors[nVertexColors];
  117. }
  118.  
  119. template Mesh {
  120.  <3D82AB44-62DA-11cf-AB39-0020AF71E433>
  121.  DWORD nVertices;
  122.  array Vector vertices[nVertices];
  123.  DWORD nFaces;
  124.  array MeshFace faces[nFaces];
  125.  [...]
  126. }
  127.  
  128. Header {
  129.  1;
  130.  0;
  131.  1;
  132. }
  133.  
  134. Mesh {
  135.  42;
  136.  -59.851265;61.959282;30.947941;,
  137.  -55.574165;62.917175;33.317539;,
  138.  55.574165;62.917175;33.317539;,
  139.  59.851265;61.959282;30.947941;,
  140.  55.846550;57.492134;31.916538;,
  141.  -55.846550;57.492134;31.916538;,
  142.  -98.520958;50.451824;46.157623;,
  143.  -91.408218;52.769817;48.027008;,
  144.  91.408218;52.769817;48.027008;,
  145.  98.520958;50.451824;46.157623;,
  146.  92.265999;48.133854;44.288300;,
  147.  -92.265999;48.133854;44.288300;,
  148.  -116.075912;39.053497;58.814110;,
  149.  -107.511086;40.711132;61.502068;,
  150.  107.511086;40.711132;61.502068;,
  151.  116.075912;39.053497;58.814110;,
  152.  108.840797;37.395905;56.126183;,
  153.  -108.840797;37.395905;56.126183;,
  154.  -157.527542;3.640183;68.521835;,
  155.  -145.703064;3.550425;72.066849;,
  156.  145.703064;3.550425;72.066849;,
  157.  157.527542;3.640183;68.521835;,
  158.  147.808899;3.729940;64.976830;,
  159.  -147.808899;3.729940;64.976830;,
  160.  -211.435089;-34.093834;56.093765;,
  161.  -195.934540;-36.552776;59.205490;,
  162.  195.934540;-36.552776;59.205490;,
  163.  211.435089;-34.093834;56.093765;,
  164.  197.923523;-31.634789;52.981953;,
  165.  -197.923523;-31.634789;52.981953;,
  166.  -311.321014;-64.476158;6.701168;,
  167.  -289.979279;-68.982224;7.515833;,
  168.  289.979279;-68.982224;7.515833;,
  169.  311.321014;-64.476158;6.701168;,
  170.  289.811279;-59.970116;5.886534;,
  171.  -289.811279;-59.970116;5.886534;,
  172.  -401.974976;-61.085392;-7.395262;,
  173.  -377.172302;-64.128860;-11.452997;,
  174.  377.172302;-64.128860;-11.452997;,
  175.  401.974976;-61.085392;-7.395262;,
  176.  371.365875;-58.041985;-3.337583;;
  177.  -371.365875;-58.041985;-3.337583;;
  178.  
  179.  80;
  180.  3;4,2,3;,
  181.  3;4,1,2;,
  182.  3;5,1,4;,
  183.  3;5,0,1;,
  184.  3;0,7,1;,
  185.  3;0,6,7;,
  186.  3;1,8,2;,
  187.  3;1,7,8;,
  188.  3;2,9,3;,
  189.  3;2,8,9;,
  190.  3;3,10,4;,
  191.  3;3,9,10;,
  192.  3;4,11,5;,
  193.  3;4,10,11;,
  194.  3;5,6,0;,
  195.  3;5,11,6;,
  196.  3;6,13,7;,
  197.  3;6,12,13;,
  198.  3;7,14,8;,
  199.  3;7,13,14;,
  200.  3;8,15,9;,
  201.  3;8,14,15;,
  202.  3;9,16,10;,
  203.  3;9,15,16;,
  204.  3;10,17,11;,
  205.  3;10,16,17;,
  206.  3;11,12,6;,
  207.  3;11,17,12;,
  208.  3;12,19,13;,
  209.  3;12,18,19;,
  210.  3;13,20,14;,
  211.  3;13,19,20;,
  212.  3;14,21,15;,
  213.  3;14,20,21;,
  214.  3;15,22,16;,
  215.  3;15,21,22;,
  216.  3;16,23,17;,
  217.  3;16,22,23;,
  218.  3;17,18,12;,
  219.  3;17,23,18;,
  220.  3;18,25,19;,
  221.  3;18,24,25;,
  222.  3;19,26,20;,
  223.  3;19,25,26;,
  224.  3;20,27,21;,
  225.  3;20,26,27;,
  226.  3;21,28,22;,
  227.  3;21,27,28;,
  228.  3;22,29,23;,
  229.  3;22,28,29;,
  230.  3;23,24,18;,
  231.  3;23,29,24;,
  232.  3;24,31,25;,
  233.  3;24,30,31;,
  234.  3;25,32,26;,
  235.  3;25,31,32;,
  236.  3;26,33,27;,
  237.  3;26,32,33;,
  238.  3;27,34,28;,
  239.  3;27,33,34;,
  240.  3;28,35,29;,
  241.  3;28,34,35;,
  242.  3;29,30,24;,
  243.  3;29,35,30;,
  244.  3;30,37,31;,
  245.  3;30,36,37;,
  246.  3;31,38,32;,
  247.  3;31,37,38;,
  248.  3;32,39,33;,
  249.  3;32,38,39;,
  250.  3;33,40,34;,
  251.  3;33,39,40;,
  252.  3;34,41,35;,
  253.  3;34,40,41;,
  254.  3;35,36,30;,
  255.  3;35,41,36;,
  256.  3;38,40,39;,
  257.  3;37,40,38;,
  258.  3;37,41,40;,
  259.  3;36,41,37;;
  260.  
  261.  MeshMaterialList {
  262.   1;
  263.   1;
  264.   0;;
  265.   Material {
  266.    1.000000;1.000000;1.000000;1.000000;;
  267.    15.000000;
  268.    1.000000;1.000000;1.000000;;
  269.    0.000000;0.000000;0.000000;;
  270.   }
  271.  }
  272.  MeshNormals {
  273.   42;
  274.   -0.137467;0.696411;-0.704354;,
  275.   0.074143;0.876756;-0.475186;,
  276.   0.032899;0.929638;-0.367003;,
  277.   0.129451;0.238613;-0.962448;,
  278.   -0.067355;-0.211270;-0.975104;,
  279.   -0.022485;-0.184495;-0.982576;,
  280.   -0.564316;0.564010;-0.602860;,
  281.   -0.194563;0.921646;0.335728;,
  282.   0.200923;0.896433;0.395015;,
  283.   0.551238;0.539351;-0.636583;,
  284.   0.194867;-0.507933;-0.839066;,
  285.   -0.232337;-0.488953;-0.840800;,
  286.   -0.788008;0.551202;-0.274263;,
  287.   -0.215932;0.714893;0.665057;,
  288.   0.186546;0.624909;0.758083;,
  289.   0.618908;0.682659;-0.388495;,
  290.   0.234449;-0.332287;-0.913575;,
  291.   -0.229020;-0.229996;-0.945860;,
  292.   -0.757509;0.648585;0.074277;,
  293.   -0.187619;0.235563;0.953577;,
  294.   0.154723;0.104132;0.982455;,
  295.   0.562206;0.825815;0.044204;,
  296.   0.198047;0.205165;-0.958480;,
  297.   -0.193137;0.321309;-0.927070;,
  298.   -0.716350;0.515016;0.470746;,
  299.   -0.159956;-0.366632;0.916513;,
  300.   0.131783;-0.508902;0.850677;,
  301.   0.472390;0.683132;0.556936;,
  302.   0.164510;0.732995;-0.660042;,
  303.   -0.153842;0.820555;-0.550474;,
  304.   -0.410576;0.078167;0.908470;,
  305.   -0.131154;-0.829655;0.542653;,
  306.   0.090720;-0.891415;0.444015;,
  307.   0.242033;-0.017412;0.970112;,
  308.   0.115988;0.992279;0.043915;,
  309.   -0.119644;0.923941;0.363344;,
  310.   -0.195534;0.199278;0.960237;,
  311.   -0.136018;-0.990300;0.028363;,
  312.   0.068927;-0.860138;-0.505382;,
  313.   0.251960;-0.372623;0.893123;,
  314.   0.079272;0.865904;0.493889;,
  315.   -0.066273;0.938583;0.338630;;
  316.  
  317.   80;
  318.   3;4,2,3;,
  319.   3;4,1,2;,
  320.   3;5,1,4;,
  321.   3;5,0,1;,
  322.   3;0,7,1;,
  323.   3;0,6,7;,
  324.   3;1,8,2;,
  325.   3;1,7,8;,
  326.   3;2,9,3;,
  327.   3;2,8,9;,
  328.   3;3,10,4;,
  329.   3;3,9,10;,
  330.   3;4,11,5;,
  331.   3;4,10,11;,
  332.   3;5,6,0;,
  333.   3;5,11,6;,
  334.   3;6,13,7;,
  335.   3;6,12,13;,
  336.   3;7,14,8;,
  337.   3;7,13,14;,
  338.   3;8,15,9;,
  339.   3;8,14,15;,
  340.   3;9,16,10;,
  341.   3;9,15,16;,
  342.   3;10,17,11;,
  343.   3;10,16,17;,
  344.   3;11,12,6;,
  345.   3;11,17,12;,
  346.   3;12,19,13;,
  347.   3;12,18,19;,
  348.   3;13,20,14;,
  349.   3;13,19,20;,
  350.   3;14,21,15;,
  351.   3;14,20,21;,
  352.   3;15,22,16;,
  353.   3;15,21,22;,
  354.   3;16,23,17;,
  355.   3;16,22,23;,
  356.   3;17,18,12;,
  357.   3;17,23,18;,
  358.   3;18,25,19;,
  359.   3;18,24,25;,
  360.   3;19,26,20;,
  361.   3;19,25,26;,
  362.   3;20,27,21;,
  363.   3;20,26,27;,
  364.   3;21,28,22;,
  365.   3;21,27,28;,
  366.   3;22,29,23;,
  367.   3;22,28,29;,
  368.   3;23,24,18;,
  369.   3;23,29,24;,
  370.   3;24,31,25;,
  371.   3;24,30,31;,
  372.   3;25,32,26;,
  373.   3;25,31,32;,
  374.   3;26,33,27;,
  375.   3;26,32,33;,
  376.   3;27,34,28;,
  377.   3;27,33,34;,
  378.   3;28,35,29;,
  379.   3;28,34,35;,
  380.   3;29,30,24;,
  381.   3;29,35,30;,
  382.   3;30,37,31;,
  383.   3;30,36,37;,
  384.   3;31,38,32;,
  385.   3;31,37,38;,
  386.   3;32,39,33;,
  387.   3;32,38,39;,
  388.   3;33,40,34;,
  389.   3;33,39,40;,
  390.   3;34,41,35;,
  391.   3;34,40,41;,
  392.   3;35,36,30;,
  393.   3;35,41,36;,
  394.   3;38,40,39;,
  395.   3;37,40,38;,
  396.   3;37,41,40;,
  397.   3;36,41,37;;
  398.  }
  399.  MeshTextureCoords {
  400.   42;
  401.   0.355431;0.118737;,
  402.   0.365762;0.112779;,
  403.   0.624381;0.112779;,
  404.   0.634713;0.118737;,
  405.   0.625039;0.121509;,
  406.   0.365104;0.121509;,
  407.   0.262026;0.099420;,
  408.   0.279206;0.093046;,
  409.   0.710938;0.093046;,
  410.   0.728118;0.099420;,
  411.   0.713010;0.105794;,
  412.   0.277134;0.105794;,
  413.   0.219622;0.085299;,
  414.   0.240310;0.077929;,
  415.   0.749833;0.077929;,
  416.   0.770521;0.085299;,
  417.   0.753045;0.092669;,
  418.   0.237099;0.092669;,
  419.   0.119497;0.103052;,
  420.   0.148059;0.095771;,
  421.   0.842085;0.095771;,
  422.   0.870646;0.103052;,
  423.   0.847172;0.110332;,
  424.   0.142972;0.110333;,
  425.   -0.010715;0.169355;,
  426.   0.026726;0.165515;,
  427.   0.963417;0.165515;,
  428.   1.000859;0.169355;,
  429.   0.968222;0.173195;,
  430.   0.021922;0.173195;,
  431.   -0.251986;0.304700;,
  432.   -0.200435;0.307834;,
  433.   1.190579;0.307834;,
  434.   1.242129;0.304700;,
  435.   1.190173;0.301566;,
  436.   -0.200030;0.301566;,
  437.   -0.470958;0.390319;,
  438.   -0.411048;0.402025;,
  439.   1.401191;0.402025;,
  440.   1.461102;0.390319;,
  441.   1.387167;0.378614;,
  442.   -0.397022;0.378613;;
  443.  }
  444. }
  445.